From e9c9f60ecaf9d0eb95904d22a9d655f2094c63e4 Mon Sep 17 00:00:00 2001 From: "iap10@freefall.cl.cam.ac.uk" Date: Wed, 6 Jul 2005 23:16:32 +0000 Subject: [PATCH] Change default Xen scheduler to Stephan Diestelhorst's SEDF, which can provide time slice guarantees as well as weighted differentiation. You can still select bvt by putting 'sched=bvt' on the Xen grub line. Signed-off-by: ian@xensource.com --- xen/common/schedule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/schedule.c b/xen/common/schedule.c index c547731302..422f4f48ae 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -38,8 +38,8 @@ #include #include -/* opt_sched: scheduler - default to Borrowed Virtual Time */ -static char opt_sched[10] = "bvt"; +/* opt_sched: scheduler - default to SEDF */ +static char opt_sched[10] = "sedf"; string_param("sched", opt_sched); #if defined(WAKE_HISTO) -- 2.30.2